HOW TO UPDATE OLD MAXREXX DOORS

The way of opening the MaxRexx port has changed in version 1.2 because the multiline support has been improved.

Example Part of Old Script
--------------------------

/*All AREXX Programs have a comment*/
OPTIONS RESULTS
ADDRESS MAXSERVE
$OPENWINDOW '300,100,Test Window!'
...
...
...



Updated Version
---------------

/*All AREXX Programs have a comment*/
Parse Arg Line
line=arg(1)
port='ADDRESS MAXSERVE'line
Interpret port
OPTIONS RESULTS
$OPENWINDOW '300,100,Test Window!'
...
...
...